Add the new version mismatch error constant to the end of the list, to
authorJohan Dahlin <jdahlin@async.com.br>
Thu, 5 Jun 2008 13:16:43 +0000 (13:16 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Thu, 5 Jun 2008 13:16:43 +0000 (13:16 +0000)
2008-06-05  Johan Dahlin  <jdahlin@async.com.br>

    * gtk/gtkbuilder.h (enum): Add the new version mismatch error
    constant to the end of the list, to avoid breaking the stable ABI

svn path=/trunk/; revision=20319

ChangeLog
gtk/gtkbuilder.h

index 4e5a9588a799b016081850fd7c6d432a8d772f50..6adac39f1946bc2355611c4dc58bce3e9b0c9b2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-05  Johan Dahlin  <jdahlin@async.com.br>
+
+       * gtk/gtkbuilder.h (enum): Add the new version mismatch error
+       constant to the end of the list, to avoid breaking the stable ABI
+
 2008-06-05  Michael Natterer  <mitch@imendio.com>
 
        * configure.in: add -DATK_DISABLE_SINGLE_INCLUDES to CPPFLAGS.
index b266bc6bca5287d9bd5ac3bdd3b0d6edade64f33..83ec708b534d10353be0353cabd080dcbedb92fa 100644 (file)
@@ -44,14 +44,14 @@ typedef struct _GtkBuilderPrivate GtkBuilderPrivate;
 
 typedef enum
 {
-  GTK_BUILDER_ERROR_VERSION_MISMATCH,
   GTK_BUILDER_ERROR_INVALID_TYPE_FUNCTION,
   GTK_BUILDER_ERROR_UNHANDLED_TAG,
   GTK_BUILDER_ERROR_MISSING_ATTRIBUTE,
   GTK_BUILDER_ERROR_INVALID_ATTRIBUTE,
   GTK_BUILDER_ERROR_INVALID_TAG,
   GTK_BUILDER_ERROR_MISSING_PROPERTY_VALUE,
-  GTK_BUILDER_ERROR_INVALID_VALUE
+  GTK_BUILDER_ERROR_INVALID_VALUE,
+  GTK_BUILDER_ERROR_VERSION_MISMATCH
 } GtkBuilderError;
 
 GQuark gtk_builder_error_quark (void);